-
Notifications
You must be signed in to change notification settings - Fork 109
fix: update video thumbnail paths #14099
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
mnkiefer
commented
Feb 6, 2026
- Update video thumbnail images to come from same folder as their video sources.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR attempts to fix video thumbnail image paths by updating them from the /gh-aw/images/ directory to /gh-aw/videos/ directory to match the location of their corresponding video sources. However, the PR only partially addresses the issue as it updates the directory path but doesn't correct the filenames themselves.
Changes:
- Updated thumbnail path in quick-start.mdx from
/gh-aw/images/to/gh-aw/videos/ - Updated thumbnail path in creating-workflows.mdx from
/gh-aw/images/to/gh-aw/videos/
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| docs/src/content/docs/setup/quick-start.mdx | Updates video thumbnail path to videos directory, but filename still has incorrect "-thumbnail" suffix |
| docs/src/content/docs/setup/creating-workflows.mdx | Updates video thumbnail path to videos directory, but filename contains spelling error and incorrect suffix |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| thumbnail="/gh-aw/videos/install-and-add-workflow-in-cli-thumbnail.png" | ||
| /> | ||
|
|
Copilot
AI
Feb 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The thumbnail filename is incorrect. The actual file in the videos directory is named "install-and-add-workflow-in-cli.png" (without the "-thumbnail" suffix). Either rename the file to match this path, or better yet, remove the thumbnail prop entirely and let the Video component auto-detect the poster image from the video source path, as documented in docs/public/videos/README.md.
| thumbnail="/gh-aw/videos/install-and-add-workflow-in-cli-thumbnail.png" | |
| /> | |
| /> |
| caption="Create an agentic workflow from the GitHub web interface" | ||
| aspectRatio="16:9" | ||
| thumbnail="/gh-aw/images/create-workfow-github-thumbnail.png" | ||
| thumbnail="/gh-aw/videos/create-workfow-github-thumbnail.png" |
Copilot
AI
Feb 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The thumbnail filename contains two errors: it's missing an 'l' in "workflow" (should be "workflow" not "workfow") and it has an incorrect "-thumbnail" suffix. The actual file in the videos directory is "create-workflow-on-github.png". Either correct the filename or remove the thumbnail prop entirely to let the Video component auto-detect the poster image.
| thumbnail="/gh-aw/videos/create-workfow-github-thumbnail.png" | |
| thumbnail="/gh-aw/videos/create-workflow-on-github.png" |